home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Leonardo the Inventor
/
Leonardo The Inventor (93026)(Broderbund)(Riverdeep)(2004).iso
/
LEOWINMV
/
SHARED.DIR
/
03078_Script_MISC HANDLERS
< prev
next >
Wrap
Text File
|
1996-04-01
|
1KB
|
49 lines
-- -----------------------------------------------------------
-- Handler pauseFrame loops the frame.
on pauseFrame
go the frame
end
-- -----------------------------------------------------------
-- Handler initLeoFlags clears the globals
on initLeoFlags
clearGlobals
end
-- -----------------------------------------------------------
-- Handler noPuppets shuts off the puppets in the first 24
-- channels (from director 3.0)
on noPuppets
repeat with S = 1 to 24
puppetSprite S, false
end repeat
end
-- -----------------------------------------------------------
-- Handler setCurrentInvention sets the value of the global
-- variable currentInvention to the given value.
on setCurrentInvention which
global currentInvention
set currentInvention = which
end
-- -----------------------------------------------------------
-- Handler removeFromStage removes the given sprite from the
-- stage.
on removeFromStage whichSprite
set the locV of sprite whichSprite = 1000
updatestage
end
-- -----------------------------------------------------------
-- Handler playQuizGame
on playQuizGame
go movie "quizgam.dir"
end